home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Freeware / Adobe Air 1.5 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / collections / IList.as < prev    next >
Encoding:
Text File  |  2008-10-29  |  776 b   |  29 lines

  1. package mx.collections
  2. {
  3.    import flash.events.IEventDispatcher;
  4.    
  5.    public interface IList extends IEventDispatcher
  6.    {
  7.       function addItem(param1:Object) : void;
  8.       
  9.       function get length() : int;
  10.       
  11.       function addItemAt(param1:Object, param2:int) : void;
  12.       
  13.       function itemUpdated(param1:Object, param2:Object = null, param3:Object = null, param4:Object = null) : void;
  14.       
  15.       function getItemIndex(param1:Object) : int;
  16.       
  17.       function removeItemAt(param1:int) : Object;
  18.       
  19.       function getItemAt(param1:int, param2:int = 0) : Object;
  20.       
  21.       function removeAll() : void;
  22.       
  23.       function toArray() : Array;
  24.       
  25.       function setItemAt(param1:Object, param2:int) : Object;
  26.    }
  27. }
  28.  
  29.